2715570731eca446c8294ecade01af118ce1becc,govpay-web-console/src/main/java/it/govpay/web/rs/dars/BaseDarsHandler.java,BaseDarsHandler,getUriEsportazione,#UriInfo#BasicBD#,177
Before Change
@Override
public URI getUriEsportazione(UriInfo uriInfo, BasicBD bd)throws ConsoleException{
try{
URI uri = BaseRsService.checkDarsURI(uriInfo).path(this.pathServizio).path(BaseDarsService.PATH_ESPORTA).build();
return uri;
}catch(Exception e){
throw new ConsoleException(e);
After Change
@Override
public URI getUriEsportazione(UriInfo uriInfo, BasicBD bd)throws ConsoleException{
try{
URI uri = Utils.creaUriConPath(this.pathServizio, BaseDarsService.PATH_ESPORTA);
return uri;
}catch(Exception e){
throw new ConsoleException(e);